projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0a3fde9
)
(macro-declaration-function): Add a `doc-string' declaration.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 24 Oct 2005 16:10:42 +0000
(16:10 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 24 Oct 2005 16:10:42 +0000
(16:10 +0000)
lisp/emacs-lisp/byte-run.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/byte-run.el
b/lisp/emacs-lisp/byte-run.el
index c31036f02edf52f8fbc9bd1a6f5fdca196207ee3..453bef5ecbb0ae9e45af27aeedca510d28496ddd 100644
(file)
--- a/
lisp/emacs-lisp/byte-run.el
+++ b/
lisp/emacs-lisp/byte-run.el
@@
-50,6
+50,8
@@
The return value of this function is not used."
(put macro 'lisp-indent-function (car (cdr d))))
((and (consp d) (eq (car d) 'debug))
(put macro 'edebug-form-spec (car (cdr d))))
+ ((and (consp d) (eq (car d) 'doc-string))
+ (put macro 'doc-string-elt (car (cdr d))))
(t
(message "Unknown declaration %s" d))))))